home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / p_aa4re / mbb35src / dvinit.asm < prev    next >
Encoding:
Assembly Source File  |  1991-02-16  |  1.5 KB  |  27 lines

  1. ;==========================================================================;
  2. ; DV initialize                                                            ;
  3.  
  4. ;   This software may be freely distributed and used, but it may not       ;
  5. ;   under any circumstances be sold by anyone other than the author.       ;
  6. ;   It may be distributed by a commercial company as long as it is         ;
  7. ;   for no cost.                                                           ;
  8. ;==========================================================================;
  9.  
  10.  
  11. ;--------------------------------------------------------------------------;
  12. ; This outside loop is for the QuadPort board or the 4 async port          ;
  13. ; card.  We loop thru all the ports checking for pending interrupts        ;
  14. ; and handling them.  There is a catch at the far end which loops us       ;
  15. ; back.  Other than that, there are no changes.                            ;
  16. ;                                                                          ;
  17. ; The only difference between the QUADRAN QUADPORT card and the 4 async    ;
  18. ; port card is that the QuadPort card has an extra register for interrupt  ;
  19. ; control.                                                                 ;
  20. ;--------------------------------------------------------------------------;
  21.  
  22.         CMP     chip[SI],chip_qrqp  ; Quadram QuadPort?
  23.         JNE     serint_qrqp_do      ;     Nope.. go directly to loop.
  24.                                     ;     This happens for the 4 async port
  25.  
  26.  
  27.